Socket
Socket
Sign inDemoInstall

bplist-parser

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bplist-parser

Binary plist parser.


Version published
Weekly downloads
7.4M
decreased by-7.59%
Maintainers
1
Weekly downloads
 
Created

What is bplist-parser?

The bplist-parser npm package is designed for parsing binary property list (plist) files. These files are often used in macOS and iOS for storing settings and properties of applications. The package allows developers to easily read and manipulate data stored in this binary format, making it useful for tasks such as configuration management, application development, and data analysis.

What are bplist-parser's main functionalities?

Parsing binary plist files

This feature allows you to parse binary plist files. The code sample demonstrates how to read a binary plist file from the filesystem and parse it into a JavaScript object using the bplist-parser package.

const bplistParser = require('bplist-parser');
const fs = require('fs');

fs.readFile('/path/to/file.plist', (err, data) => {
  if (err) throw err;
  bplistParser.parseBuffer(data).then((obj) => {
    console.log(obj);
  });
});

Other packages similar to bplist-parser

Keywords

FAQs

Package last updated on 03 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc